Accept the user’s first and last name¶
Write a python program which accepts the user’s first and last name and print them in reverse order with a space between them.
fname = input("Input your First Name : ")
lname = input("Input your Last Name : ")
print ("Hello " + lname + " " + fname)
Output:
Input your First Name : Dany
Input your Last Name : Boon
Hello Boon Dany